home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / catch.zip / DIRECTS.WBF < prev    next >
Text File  |  1993-03-03  |  293b  |  15 lines

  1. ;Example Catch file
  2. ;Copyright Sean Batten
  3.  
  4. ;Demonstrates GetWinDir and GetSysDir
  5.  
  6. Let win=GetWinDir()
  7. Let sys=GetSysDir()
  8.  
  9. Let message=Join("The Windows directory is : ",win)
  10. ok ("Directory",message)
  11.  
  12. Let message=Join("The system directory is : ",sys)
  13. ok ("Directory",message)
  14.  
  15.